home *** CD-ROM | disk | FTP | other *** search
- package com.extensibility.exv;
-
- import java.io.Serializable;
-
- public class SchemaException extends Exception implements Serializable {
- private Throwable parent = null;
-
- public SchemaException() {
- }
-
- public SchemaException(String var1) {
- super(var1);
- }
-
- public SchemaException(String var1, Throwable var2) {
- super(var1);
- this.parent = var2;
- }
-
- public SchemaException(Throwable var1) {
- this.parent = var1;
- }
-
- public String getMessage() {
- return this.parent != null ? String.valueOf(String.valueOf(super.getMessage()).concat(String.valueOf("; nested exception is \n\t"))).concat(String.valueOf(this.parent.toString())) : super.getMessage();
- }
- }
-